Skip to main content

userInfo

/v2/private/life/userInfo

Available Methods​

  • POST

POST /v2/private/life/userInfo​

This endpoint is used to save information on the user account step in the life flow.

Params​

ParamTypeDescription
dateOfBirthStringThe user's date of birth
genderStringThe user's gender
stateStringThe user's Sate address (ex. MI)
objectiveCoverageArray Enum - ['familyTakenCare', 'payingBills', 'recommendation']The user's Sate address (ex. MI)
Example request body
body: { 
"dateOfBirth": "2021-07-29T16:50:16.791+00:00",
"gender": "M",
"state": "KY",
"objectiveCoverage": "payingBills"
}

Returns​

The entire user object.

Example return object with user
user: {
...user,
dateOfBirth: "2021-07-29T16:50:16.791+00:00",
gender: "M",
address: {
state: "KY"
},
age: 1,
life: {
lifeInsurance: {
objectiveCoverage: "payingBills",
}
}
}